Skip to main content

TsgCADIterate

Unit: DXFConv

Description

TsgCADIterate is used as the type for the TsgDXFConverter.Iterate method parameter.

ValueDescription
MatrixSpecifies the coordinate transformation matrix.
InsertSpecifies the current block reference or nil.
ColorSpecifies the current block color or clNone.
XScaleSpecifies a text width scaling.
YScaleSpecifies a text height scaling.
AngleSpecifies a text rotation angle.
AdditionalSpecifies an user-defined value.

Syntax

type 
PsgCADIterate = ^TsgCADIterate;
TsgCADIterate = record
Matrix: TFMatrix;
Insert: TsgDXFInsert;
Color: TColor;
XScale: Single;
YScale: Single;
Angle: Single;
Additional: Integer;
end;